crypto/tls.clientHelloMsg.supportedCurves (field)
16 uses
crypto/tls (current package)
handshake_client.go#L81: supportedCurves: config.curvePreferences(),
handshake_client_tls13.go#L225: for _, id := range hs.hello.supportedCurves {
handshake_messages.go#L79: supportedCurves []CurveID
handshake_messages.go#L127: if len(m.supportedCurves) > 0 {
handshake_messages.go#L132: for _, curve := range m.supportedCurves {
handshake_messages.go#L473: m.supportedCurves = append(m.supportedCurves, CurveID(curve))
handshake_server.go#L245: hs.ecdheOk = supportsECDHE(c.config, hs.clientHello.supportedCurves, hs.clientHello.supportedPoints)
handshake_server.go#L945: SupportedCurves: clientHello.supportedCurves,
handshake_server_tls13.go#L196: for _, group := range hs.clientHello.supportedCurves {
handshake_server_tls13.go#L538: len(ch.supportedCurves) != len(ch1.supportedCurves) ||
handshake_server_tls13.go#L554: for i := range ch.supportedCurves {
handshake_server_tls13.go#L555: if ch.supportedCurves[i] != ch1.supportedCurves[i] {
key_agreement.go#L171: for _, c := range clientHello.supportedCurves {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |